#include #include #include void czekaj(int czas) { int t = clock(); t += czas; while( clock() < t ){} } int main() { int x; printf("Podaj x"); scanf("%d", &x); if(x%2==0) { if(x%5==0) { printf("%d", x); printf(" jest parzyste i podzielne przez 5"); czekaj(2000); } } return 0; }